System.Collections.IDictionary.Remove Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Removes the key (and associated value) from the collection that is equal to the passed in key. Always throws an exception indicating that this method is not supported in a read-only dictionary.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
private void IDictionary.Remove(
	Object key
)
Visual Basic (Declaration)
Private Sub System.Collections.IDictionary.Remove ( _
	key As Object _
) Implements IDictionary.Remove
Visual C++
private:
virtual void System.Collections.IDictionary.Remove (
	Object^ key
) sealed = IDictionary::Remove

Parameters

key
Object
The key to remove.

Exceptions

ExceptionCondition
System..::NotSupportedExceptionAlways thrown.

See Also